projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f76dcc
)
(lw_toolkit_related_event_p): A predicate to identify toolkit-specific events.
author
Miles Bader
<miles@gnu.org>
Thu, 4 Jul 1996 05:50:07 +0000
(
05:50
+0000)
committer
Miles Bader
<miles@gnu.org>
Thu, 4 Jul 1996 05:50:07 +0000
(
05:50
+0000)
lwlib/lwlib.c
patch
|
blob
|
history
diff --git
a/lwlib/lwlib.c
b/lwlib/lwlib.c
index aea3c3b87ca4bf17f39cce8edd2e05a197c5ec55..9dea80131ed36b72af255d37e8010b97baca6ebc 100644
(file)
--- a/
lwlib/lwlib.c
+++ b/
lwlib/lwlib.c
@@
-1379,3
+1379,16
@@
lw_allow_resizing (w, flag)
xm_manage_resizing (w, flag);
#endif
}
+
+/* Check to see if event should be ignored by Emacs */
+Boolean
+lw_toolkit_related_event_p (event)
+ XEvent *event;
+{
+#if defined (USE_MOTIF)
+ return lw_motif_menu_related_event_p (event);
+#else
+ return False;
+#endif
+}
+